home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C / Applications / Python 1.3 / source code / Nt / Demo / dl.nt / mci / makefile.nt.mak next >
Encoding:
Makefile  |  1995-12-17  |  366 b   |  24 lines  |  [TEXT/R*ch]

  1. # Replace the next to lines as appropriate.
  2. module=mcimodule
  3. pythondir=..\..\..\
  4.  
  5. BUILD_DL=1
  6. !include <$(pythondir)\make.nt.in>
  7. #override the srcdir spec.
  8. srcdir=$(pythondir)
  9.  
  10. lcustom=winmm.lib
  11.  
  12.  
  13. all: $(module).dll
  14.  
  15. $(module).dll : $(module).obj
  16.  
  17. .ignore:
  18.  
  19. clean:
  20.     del *.obj *.lib *.exp *.pdb *.pch 2>nul    # some may not exist - who cares!
  21.  
  22. clobber: clean
  23.     del *.dll
  24.